home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000824-20010305 / 000044_news@columbia.edu _Mon Sep 25 12:08:46 2000.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from watsun.cc.columbia.edu (watsun.cc.columbia.edu [128.59.39.2])
  3.     by uhaligani.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id MAA01174
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Mon, 25 Sep 2000 12:08:45 -0400 (EDT)
  5. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  6.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id MAA26844
  7.     for <kermit.misc@watsun.cc.columbia.edu>; Mon, 25 Sep 2000 12:08:44 -0400 (EDT)
  8. Received: (from news@localhost)
  9.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id LAA23733
  10.     for kermit.misc@watsun.cc.columbia.edu; Mon, 25 Sep 2000 11:39:31 -0400 (EDT)
  11. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  12. From: fdc@columbia.edu (Frank da Cruz)
  13. Subject: Re: Sending carriage returns
  14. Date: 25 Sep 2000 15:39:31 GMT
  15. Organization: Columbia University
  16. Message-ID: <8qnrjj$n5i$1@newsmaster.cc.columbia.edu>
  17. To: kermit.misc@columbia.edu
  18.  
  19. In article <8qnraf$q4a$1@sshuraab-i-1.production.compuserve.com>,
  20. Bruce Phipps <bruce_phipps@my-deja.com> wrote:
  21. : I solved this by inserting
  22. : sleep 3 ;give the remote computer time to react
  23. : Also, i have discovered the lineout command, which automatically adds a
  24. : carriage return
  25. : lineout hello
  26.  
  27. Right, new to C-Kermit 7.0.
  28.  
  29. Of course the real way to do this is by alternating INPUTs and OUTPUTs, e.g.:
  30.  
  31.   input 30 login:
  32.   if fail ...
  33.   lineout \%u
  34.   input 10 Password:
  35.   if fail ...
  36.   lineout \%p
  37.   ...
  38.  
  39. See the manual and/or the tutorial:
  40.  
  41.   http://www.columbia.edu/kermit/manuals.html
  42.   http://www.columbia.edu/kermit/ckscripts.html#tut
  43.  
  44. - Frank